Skip to content

Bump the connectrelated group with 4 updates #394

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2024

Bumps the connectrelated group with 4 updates: @bufbuild/buf, @bufbuild/protobuf, @bufbuild/protoc-gen-es and @bufbuild/protoplugin.

Updates @bufbuild/buf from 1.34.0 to 1.35.1

Release notes

Sourced from @​bufbuild/buf's releases.

v1.35.1

  • Fix the git input parameter ref to align with the git notion of a ref. This allows for the use of branch names, tag names, and commit hashes.
  • Fix unexpected buf build errors with absolute path directory inputs without workspace and/or module configurations (e.g. buf.yaml, buf.work.yaml) and proto file paths set to the --path flag.

v1.35.0

  • Add buf generate --clean flag that will delete the directories, jar files, or zip files that the plugins will write to, prior to generation. Allows cleaning of existing assets without having to call rm -rf.
  • Deprecate --username flag on and username prompt on buf registry login. A username is no longer required to log in.
Changelog

Sourced from @​bufbuild/buf's changelog.

[v1.35.1] - 2024-07-24

  • Fix the git input parameter ref to align with the git notion of a ref. This allows for the use of branch names, tag names, and commit hashes.
  • Fix unexpected buf build errors with absolute path directory inputs without workspace and/or module configurations (e.g. buf.yaml, buf.work.yaml) and proto file paths set to the --path flag.

[v1.35.0] - 2024-07-22

  • Add buf generate --clean flag that will delete the directories, jar files, or zip files that the plugins will write to, prior to generation. Allows cleaning of existing assets without having to call rm -rf.
  • Deprecate --username flag on and username prompt on buf registry login. A username is no longer required to log in.
  • Add --list-services and --list-methods flags to buf curl, which trigger the command to list known services or methods in the RPC schema, instead of invoking an RPC method.
Commits

Updates @bufbuild/protobuf from 1.10.0 to 2.0.0

Release notes

Sourced from @​bufbuild/protobuf's releases.

v2.0.0

What's new in version 2

To support Protobuf editions, we have to make breaking changes that also affect users of proto2 and proto3. This prompted us to make more extensive changes that take feedback from version 1 into account:

We no longer use classes. Instead, we generate a schema object and a type for every message. To create a new instance, to serialize, and for other concerns, we provide functions. Here is a simple example:

import { create, toBinary } from "@bufbuild/protobuf";
import { UserSchema } from "./gen/example_pb";
let user = create(UserSchema, {
firstName: "Homer",
lastName: "Simpson",
active: true,
});
const bytes = toBinary(UserSchema, user);

If you use proto3, messages are now plain objects. Files with proto2 and editions use the prototype chain to track field presence.

This approach solves several outstanding issues, such as:

[!TIP]

Take a look at the upgrade guide to learn more.

[!NOTE]

Connect-ES does not support version 2 yet. We will update it shortly.

Contributors

Thanks to @​srikrsna-buf for his contributions to v2!

v2.0.0-beta.3

What's Changed

This is the third beta release for version 2. See v2.0.0-alpha.1 for an introduction. To install beta packages, run npm install @bufbuild/protobuf@beta @bufbuild/protoc-gen-es@beta.

... (truncated)

Commits

Updates @bufbuild/protoc-gen-es from 1.10.0 to 2.0.0

Release notes

Sourced from @​bufbuild/protoc-gen-es's releases.

v2.0.0

What's new in version 2

To support Protobuf editions, we have to make breaking changes that also affect users of proto2 and proto3. This prompted us to make more extensive changes that take feedback from version 1 into account:

We no longer use classes. Instead, we generate a schema object and a type for every message. To create a new instance, to serialize, and for other concerns, we provide functions. Here is a simple example:

import { create, toBinary } from "@bufbuild/protobuf";
import { UserSchema } from "./gen/example_pb";
let user = create(UserSchema, {
firstName: "Homer",
lastName: "Simpson",
active: true,
});
const bytes = toBinary(UserSchema, user);

If you use proto3, messages are now plain objects. Files with proto2 and editions use the prototype chain to track field presence.

This approach solves several outstanding issues, such as:

[!TIP]

Take a look at the upgrade guide to learn more.

[!NOTE]

Connect-ES does not support version 2 yet. We will update it shortly.

Contributors

Thanks to @​srikrsna-buf for his contributions to v2!

v2.0.0-beta.3

What's Changed

This is the third beta release for version 2. See v2.0.0-alpha.1 for an introduction. To install beta packages, run npm install @bufbuild/protobuf@beta @bufbuild/protoc-gen-es@beta.

... (truncated)

Commits

Updates @bufbuild/protoplugin from 1.10.0 to 2.0.0

Release notes

Sourced from @​bufbuild/protoplugin's releases.

v2.0.0

What's new in version 2

To support Protobuf editions, we have to make breaking changes that also affect users of proto2 and proto3. This prompted us to make more extensive changes that take feedback from version 1 into account:

We no longer use classes. Instead, we generate a schema object and a type for every message. To create a new instance, to serialize, and for other concerns, we provide functions. Here is a simple example:

import { create, toBinary } from "@bufbuild/protobuf";
import { UserSchema } from "./gen/example_pb";
let user = create(UserSchema, {
firstName: "Homer",
lastName: "Simpson",
active: true,
});
const bytes = toBinary(UserSchema, user);

If you use proto3, messages are now plain objects. Files with proto2 and editions use the prototype chain to track field presence.

This approach solves several outstanding issues, such as:

[!TIP]

Take a look at the upgrade guide to learn more.

[!NOTE]

Connect-ES does not support version 2 yet. We will update it shortly.

Contributors

Thanks to @​srikrsna-buf for his contributions to v2!

v2.0.0-beta.3

What's Changed

This is the third beta release for version 2. See v2.0.0-alpha.1 for an introduction. To install beta packages, run npm install @bufbuild/protobuf@beta @bufbuild/protoc-gen-es@beta.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 1, 2024
Bumps the connectrelated group with 4 updates: [@bufbuild/buf](https://github.com/bufbuild/buf), [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf), [@bufbuild/protoc-gen-es](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es) and [@bufbuild/protoplugin](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoplugin).


Updates `@bufbuild/buf` from 1.34.0 to 1.35.1
- [Release notes](https://github.com/bufbuild/buf/releases)
- [Changelog](https://github.com/bufbuild/buf/blob/main/CHANGELOG.md)
- [Commits](bufbuild/buf@v1.34.0...v1.35.1)

Updates `@bufbuild/protobuf` from 1.10.0 to 2.0.0
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.0.0/packages/protobuf)

Updates `@bufbuild/protoc-gen-es` from 1.10.0 to 2.0.0
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.0.0/packages/protoc-gen-es)

Updates `@bufbuild/protoplugin` from 1.10.0 to 2.0.0
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.0.0/packages/protoplugin)

---
updated-dependencies:
- dependency-name: "@bufbuild/buf"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: connectrelated
- dependency-name: "@bufbuild/protobuf"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: connectrelated
- dependency-name: "@bufbuild/protoc-gen-es"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: connectrelated
- dependency-name: "@bufbuild/protoplugin"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: connectrelated
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/connectrelated-2f0bbee221 branch from 8a2be7f to 93f0a48 Compare August 2, 2024 16:48
dependabot bot and others added 2 commits August 2, 2024 12:51
Bumps the reactquery group with 2 updates in the / directory:
[@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query)
and
[@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools).

Updates `@tanstack/react-query` from 5.40.0 to 5.51.16
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/query/releases"><code>@​tanstack/react-query</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v5.51.16</h2>
<p>Version 5.51.16 - 7/31/24, 9:08 AM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>svelte-query: ensure compatibility with NodeNext (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7825">#7825</a>)
(01e63a5) by Lachlan Collins</li>
</ul>
<h3>Chore</h3>
<ul>
<li>deps: lock file maintenance (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7819">#7819</a>)
(74f10b7) by renovate[bot]</li>
<li>deps: update dependency react-intersection-observer to v9 (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7818">#7818</a>)
(e2315cc) by renovate[bot]</li>
<li>deps: update all non-major dependencies (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7817">#7817</a>)
(4cdc2c8) by renovate[bot]</li>
<li>deps: use prettier v3.3.3 (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7816">#7816</a>)
(216a926) by Lachlan Collins</li>
</ul>
<h3>Test</h3>
<ul>
<li>svelte-query: add refetch test for createQuery (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7810">#7810</a>)
(461876a) by Lachlan Collins</li>
</ul>
<h3>Ci</h3>
<ul>
<li>renovate: ignore vue2 and vue2.7 (6993177) by Lachlan Collins</li>
<li>renovate: add renovate config (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7813">#7813</a>)
(6d8d203) by Lachlan Collins</li>
</ul>
<h3>Docs</h3>
<ul>
<li>svelte-query: add persist to basic example (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7807">#7807</a>)
(99f1250) by Lachlan Collins</li>
<li>solid-query: fix quick-start example (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7770">#7770</a>)
(fcac011) by <a
href="https://github.com/manudeli"><code>@​manudeli</code></a></li>
<li>typedoc: use sub-folders for reference docs (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7803">#7803</a>)
(f2fd318) by Lachlan Collins</li>
<li>examples: Fix small errors in svelte examples (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7801">#7801</a>)
(dac5da5) by Lachlan Collins</li>
</ul>
<h2>Packages</h2>
<ul>
<li><code>@​tanstack/query-core</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/react-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/react-query-next-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/solid-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/solid-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/solid-query-persist-client</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/svelte-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/svelte-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/svelte-query-persist-client</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/vue-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/vue-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/angular-query-devtools-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/angular-query-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/query-broadcast-client-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/query-persist-client-core</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/TanStack/query/commit/de931d006daac85bfa9199a77af95ea4b8cc6313"><code>de931d0</code></a>
release: v5.51.16</li>
<li><a
href="https://github.com/TanStack/query/commit/74f10b773f2b1b5f5558d9db3ade0ba1e364fb05"><code>74f10b7</code></a>
chore(deps): lock file maintenance (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7819">#7819</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/ec8e800c66ebdeaf540839021f76d8ffc5ca2711"><code>ec8e800</code></a>
release: v5.51.15</li>
<li><a
href="https://github.com/TanStack/query/commit/fec324f7e3f218751b94834f635ac8356464d485"><code>fec324f</code></a>
release: v5.51.14</li>
<li><a
href="https://github.com/TanStack/query/commit/34a567215c0f5dae55c7e62b04026d48977c04c3"><code>34a5672</code></a>
refactor(react-query): add error message for skipToken in
useSuspenseQueries...</li>
<li><a
href="https://github.com/TanStack/query/commit/bd3296bfed9b4db1882e42fe378f2f35dc240381"><code>bd3296b</code></a>
chore: Update <code>@tanstack/config</code> to v0.11.0 (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7795">#7795</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/c3dffbdeae5051f2ab1e4c89abf20104655fef29"><code>c3dffbd</code></a>
release: v5.51.11</li>
<li><a
href="https://github.com/TanStack/query/commit/b76400966cbca0a218d6593735f046da2c78a70e"><code>b764009</code></a>
fix(svelte-query): Correct data type when <code>initialData</code> is
set (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/7769">#7769</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/70620ec724d0dd95483e93967d63b0f0c688312e"><code>70620ec</code></a>
release: v5.51.9</li>
<li><a
href="https://github.com/TanStack/query/commit/c1012511395a1c2e5c60e181c82c16b4cc453c89"><code>c101251</code></a>
release: v5.51.5</li>
<li>Additional commits viewable in <a
href="https://github.com/TanStack/query/commits/v5.51.16/packages/react-query">compare
view</a></li>
</ul>
</details>
<br />

Updates `@tanstack/react-query-devtools` from 5.40.0 to 5.51.16
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/query/releases"><code>@​tanstack/react-query-devtools</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v5.51.16</h2>
<p>Version 5.51.16 - 7/31/24, 9:08 AM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>svelte-query: ensure compatibility with NodeNext (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7825">#7825</a>)
(01e63a5) by Lachlan Collins</li>
</ul>
<h3>Chore</h3>
<ul>
<li>deps: lock file maintenance (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7819">#7819</a>)
(74f10b7) by renovate[bot]</li>
<li>deps: update dependency react-intersection-observer to v9 (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7818">#7818</a>)
(e2315cc) by renovate[bot]</li>
<li>deps: update all non-major dependencies (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7817">#7817</a>)
(4cdc2c8) by renovate[bot]</li>
<li>deps: use prettier v3.3.3 (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7816">#7816</a>)
(216a926) by Lachlan Collins</li>
</ul>
<h3>Test</h3>
<ul>
<li>svelte-query: add refetch test for createQuery (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7810">#7810</a>)
(461876a) by Lachlan Collins</li>
</ul>
<h3>Ci</h3>
<ul>
<li>renovate: ignore vue2 and vue2.7 (6993177) by Lachlan Collins</li>
<li>renovate: add renovate config (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7813">#7813</a>)
(6d8d203) by Lachlan Collins</li>
</ul>
<h3>Docs</h3>
<ul>
<li>svelte-query: add persist to basic example (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7807">#7807</a>)
(99f1250) by Lachlan Collins</li>
<li>solid-query: fix quick-start example (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7770">#7770</a>)
(fcac011) by <a
href="https://github.com/manudeli"><code>@​manudeli</code></a></li>
<li>typedoc: use sub-folders for reference docs (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7803">#7803</a>)
(f2fd318) by Lachlan Collins</li>
<li>examples: Fix small errors in svelte examples (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7801">#7801</a>)
(dac5da5) by Lachlan Collins</li>
</ul>
<h2>Packages</h2>
<ul>
<li><code>@​tanstack/query-core</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/react-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/react-query-next-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/solid-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/solid-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/solid-query-persist-client</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/svelte-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/svelte-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/svelte-query-persist-client</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/vue-query</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/vue-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/angular-query-devtools-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/angular-query-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/query-broadcast-client-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
<li><code>@​tanstack/query-persist-client-core</code><a
href="https://github.com/5"><code>@​5</code></a>.51.16</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/TanStack/query/commit/de931d006daac85bfa9199a77af95ea4b8cc6313"><code>de931d0</code></a>
release: v5.51.16</li>
<li><a
href="https://github.com/TanStack/query/commit/ec8e800c66ebdeaf540839021f76d8ffc5ca2711"><code>ec8e800</code></a>
release: v5.51.15</li>
<li><a
href="https://github.com/TanStack/query/commit/fec324f7e3f218751b94834f635ac8356464d485"><code>fec324f</code></a>
release: v5.51.14</li>
<li><a
href="https://github.com/TanStack/query/commit/c3dffbdeae5051f2ab1e4c89abf20104655fef29"><code>c3dffbd</code></a>
release: v5.51.11</li>
<li><a
href="https://github.com/TanStack/query/commit/70620ec724d0dd95483e93967d63b0f0c688312e"><code>70620ec</code></a>
release: v5.51.9</li>
<li><a
href="https://github.com/TanStack/query/commit/c1012511395a1c2e5c60e181c82c16b4cc453c89"><code>c101251</code></a>
release: v5.51.5</li>
<li><a
href="https://github.com/TanStack/query/commit/5c50ca730eae9888c107965d643a175c8c63ac64"><code>5c50ca7</code></a>
release: v5.51.4</li>
<li><a
href="https://github.com/TanStack/query/commit/eb21d1e7b6bf35e0c6213a139aced9b660916d65"><code>eb21d1e</code></a>
release: v5.51.3</li>
<li><a
href="https://github.com/TanStack/query/commit/28af03fd72b18dc15a2d98fcec750439431bc670"><code>28af03f</code></a>
chore(deps): Update dev and example dependencies (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/7742">#7742</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/9726af3fb5b47d82683329da55ef098814a2b28f"><code>9726af3</code></a>
release: v5.51.1</li>
<li>Additional commits viewable in <a
href="https://github.com/TanStack/query/commits/v5.51.16/packages/react-query-devtools">compare
view</a></li>
</ul>
</details>
<br />

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Steve Ayers <sayers@buf.build>
@smaye81
Copy link
Member

smaye81 commented Aug 2, 2024

We can't update @bufbuild/protobuf and related packages to v2.0.0 yet until Connect supports v2.

Signed-off-by: Steve Ayers <sayers@buf.build>
@smaye81 smaye81 merged commit cb76cec into main Aug 2, 2024
6 checks passed
@smaye81 smaye81 deleted the dependabot/npm_and_yarn/connectrelated-2f0bbee221 branch August 2, 2024 17:06
@paul-sachs paul-sachs mentioned this pull request Sep 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant